@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", serif;
    font-size: 20px;
    font-weight: 400;
    background-color: rgb(255, 253, 249);  
}

.container {
    width: 1400px;
    margin: 0 auto;
}

.row {
    display: block;
}

.row::after {
    content: '';
    display: block;
    clear: both;
}

.red {background-color: red;}
.green {background-color: green;}
.blue {background-color: blue;}


.w33 {
    width: 33.3333333%;
    float: left;
    padding: 20px;
}

.w50 {
    width: 50%;
    float: left;
    padding: 20px;
}

.res-img {
    max-width: 100%;
    height: auto;
}

.w100 {
    width: 100%;
    padding: 20px;
}
.img{
    border-radius: 20px;
    width: 1350px;
    height: 420px;
    display: flex;

 }

.head {
    padding: 20px;
    width: 100%;
    height: 140px;
    background-image: url(../img/bg-img.jpg);
}

.logo-left {
    float:left;
    height: 100px;
    margin-right: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;;
}
.logo-left:hover {
    transform: scale(1.2);

}


.transparent-text {
    color: hsla(0, 0%, 0%, 0.5);        
}

.text-center {
    text-align: center;
}

.menu-link {
    display: inline-block;
    margin-top: 20px;
    margin-right: 80px;
    height: 60px;
    color: black;
    text-decoration: none;
    font-size: 20px;
    padding: 0 40px;
    line-height: 60px;
    background-color: rgb(235, 233, 208); 
    border-radius: 13px;
    color: rgb(44, 43, 35);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;;
    
}
.menu-link:hover{
    background-color: rgb(207, 200, 91);
    color:rgb(0, 0, 0);
    transform: scale(1.2);
}

.imgshka{
    background-image: url(../img/eda.jpg);
    border-radius: 20px;
    width: 100%;
    transition: 0.5s;
    opacity: 0.8;
}
.pp {
    font-size: 62px;
    font-weight: 700;
    font-family: 'Roboto';
    line-height: 300px;
    text-align: center;
    color: rgb(255, 255, 255);
    opacity: 0;
    transition: 0.5s;
}

.imgshka:hover {
    /* background: rgba(0,0,0,0.5); */
    cursor: pointer;
    transform: scale(1.2);
}

.imgshka:hover .pp {
    opacity: 1;
}
.text-content p {
    line-height: 120%;
    margin-bottom: 40px;
    text-align: justify;
}

.h1 {
    text-align: center ;
    margin-top: 30px;
}

h2{
    padding-top: 20px;
    font-size: 30px;
    text-align: center;
 }
 li{
padding: 5px;
 }
 h3{
    padding-bottom: 5px;
 }
 .img-index{
     margin-left: 40px;
 }
 .card-name{
        width: 100%;
        height: 200px;
        border: 1px solid black;
 }
.btn-up {
  position: fixed;
  background-color: #e2c230;
  right: 20px;
  bottom: 20px;
  border-radius: 22px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: none;
}

.btn-up::before {
  content: "";
  text-align: center;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 12px;
  top: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17V4M3 10l7-7 7 7'/%3E%3C/g%3E%3C/svg%3E");}